home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / ipop2d_readfiles.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  94 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6. #
  7. # Theory :
  8. #
  9. # - log into the remote server
  10. # - fold /etc/passwd
  11. # - read 1
  12. # - retr
  13. #
  14. #
  15. # We only check the banner for this flaw
  16. #
  17. #
  18.  
  19.  
  20. if(description)
  21. {
  22.  script_id(10469);
  23.  script_bugtraq_id(1484);
  24.  script_version ("$Revision: 1.12 $");
  25.  
  26.  
  27.  
  28.  name["english"] = "ipop2d reads arbitrary files";
  29.  name["francais"] = "ipop2d lit des fichiers arbitraires";
  30.  
  31.  script_name(english:name["english"],
  32.           francais:name["francais"]);
  33.  
  34.  desc["english"] = "
  35. The remote pop2 server allows the reading of arbitrary
  36. files for authenticated users, using the 'fold' command.
  37.  
  38. Solution : Contact your vendor for the latest software release.
  39. Risk factor : High";
  40.  
  41.  
  42.  desc["francais"] = "
  43. Le serveur pop2 distant permet aux utilisateurs authentifiΘs
  44. de lire des fichiers arbitraires α l'aide de la commande 'fold'.
  45.  
  46. Solution : mettez ce serveur α jour
  47. Facteur de risque : SΘrieux";
  48.  
  49.  script_description(english:desc["english"],
  50.              francais:desc["francais"]);
  51.  
  52.  summary["english"] = "checks if ipop2 allows the reading of any file";
  53.  summary["francais"] = "si ipop2 permet de lire des fichiers arbitraires";
  54.  script_summary(english:summary["english"],
  55.          francais:summary["francais"]);
  56.  
  57.  script_category(ACT_GATHER_INFO);
  58.  
  59.  
  60.  script_copyright(english:"This script is Copyright (C) 2000 Renaud Deraison",
  61.            francais:"Ce script est Copyright (C) 2000 Renaud Deraison");
  62.  
  63.  family["english"] = "Remote file access";
  64.  family["francais"] = "AccΦs aux fichiers distants";
  65.  script_family(english:family["english"],
  66.            francais:family["francais"]); 
  67.  script_dependencie("find_service.nes");;
  68.                             
  69.  script_require_ports("Services/pop2", 109);
  70.  exit(0);
  71. }
  72.  
  73.  
  74. port = get_kb_item("Services/pop2");
  75. if(!port)port = 109;
  76.  
  77. if(get_port_state(port))
  78. {
  79.  soc = open_sock_tcp(port);
  80.  if(!soc)exit(0);
  81.  b = recv_line(socket:soc, length:1024);
  82.  if(!strlen(b)){
  83.      close(soc);
  84.     exit(0);
  85.     }
  86.  
  87.  #
  88.  # Versions up to 4.55 are vulnerable
  89.  #
  90.  if(ereg(pattern:"\+ POP2 .* v4\.([0-4][0-9] .*|[5][0-5]) .*",
  91.        string:b))security_hole(port);
  92. }
  93.  
  94.